home *** CD-ROM | disk | FTP | other *** search
/ Champak 142 / Volume 142 Oct 17 2011 - Damaged.iso / Games / operation-graduates.swf / scripts / frame_1 / DoAction.as
Text File  |  2011-10-17  |  410b  |  17 lines

  1. stop();
  2. loadMovieNum(controlSWF,1000);
  3. this.createEmptyMovieClip("loadbar",1);
  4. loadbar.onEnterFrame = function()
  5. {
  6.    total = _root.getBytesTotal();
  7.    loads = _root.getBytesLoaded();
  8.    percent = int(loads / (total / 100));
  9.    progbar.myMask._width = percent;
  10.    if(total == loads && loads > 1)
  11.    {
  12.       this.removeMovieClip();
  13.       this.onEnterFrame = null;
  14.       gotoAndStop(40);
  15.    }
  16. };
  17.